home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 7
/
Amiga Format AFCD07 (Dec 1996, Issue 91).iso
/
serious
/
shareware
/
programming
/
emacs-complete
/
fsf
/
emacs
/
shortnames
/
defines.c
< prev
next >
Wrap
C/C++ Source or Header
|
1985-10-16
|
178b
|
15 lines
#include <stdio.h>
int count;
main ()
{
char buffer[512];
while (gets (buffer))
{
printf ("#define %s zz%4.4dzz\n", buffer, count++);
}
return (0);
}